home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 351-375 / 351 / pdc / bin.lzh / lib / src / DeleteExtIO.c < prev    next >
C/C++ Source or Header  |  1990-04-06  |  312b  |  14 lines

  1. #include <exec/memory.h>
  2. #include <exec/io.h>
  3.  
  4. DeleteExtIO (myExtReq, size_extreq)
  5. struct IORequest *myExtReq;
  6. LONG size_extreq;
  7. {
  8.     myExtReq->io_Message.mn_Node.ln_Type = 0xFF;
  9.     myExtReq->io_Device = (struct Device *) -1;
  10.     myExtReq->io_Unit = (struct Unit *) -1;
  11.     FreeMem (myExtReq, size_extreq);
  12. }
  13.  
  14.